home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cm100exe.zip / CM100EXE.EXE / SAMPLES / IF / GREETING.C next >
C/C++ Source or Header  |  1991-11-16  |  203b  |  16 lines

  1. /* greeting.c - Program to print "Hello World" */
  2.  
  3. #include "hello.h"
  4. #include "world.h"
  5. #include "greeting.h"
  6.  
  7. int main ( void )
  8.  
  9. {
  10. print_hello ( ) ;
  11.  
  12. print_world ( ) ;
  13.  
  14. return ( 0 ) ;
  15. }
  16.